type net/http.timeoutError
8 uses
net/http (current package)
client.go#L735: err = &timeoutError{err.Error() + " (Client.Timeout exceeded while awaiting headers)"}
client.go#L977: err = &timeoutError{err.Error() + " (Client.Timeout or context cancellation while reading body)"}
transport.go#L2635: type timeoutError struct {
transport.go#L2639: func (e *timeoutError) Error() string { return e.err }
transport.go#L2640: func (e *timeoutError) Timeout() bool { return true }
transport.go#L2641: func (e *timeoutError) Temporary() bool { return true }
transport.go#L2642: func (e *timeoutError) Is(err error) bool { return err == context.DeadlineExceeded }
transport.go#L2644: var errTimeout error = &timeoutError{"net/http: timeout awaiting response headers"}
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |